From 299714dd1a8839316fb2aba2d9555061670cebf5 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Thu, 30 May 2013 20:02:05 +0200 Subject: [PATCH] container: Don't use to-be-deprecated API Instead, do what that API does manually. --- gtk/gtkcontainer.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gtk/gtkcontainer.c b/gtk/gtkcontainer.c index 49bd093099..a30420d532 100644 --- a/gtk/gtkcontainer.c +++ b/gtk/gtkcontainer.c @@ -1870,7 +1870,8 @@ gtk_container_real_check_resize (GtkContainer *container) } else { - gtk_container_resize_children (container); + gtk_widget_size_allocate (widget, &allocation); + gtk_widget_set_allocation (widget, &allocation); } } -- 2.30.2